#id
Description: Return the identity (ID) of an object.
def id(obj):
'''
Return the identity (ID) of an object
:param obj: An object
:return: The identity (ID) of the object
'''
Example:
print(id('hello world'))
print(id([1, 2, 3, 4, 5]))
print(id(object()))